home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / tclockv2.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  703 b   |  24 lines

  1. //    Copyright (c) 1993, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TClockView
  4. //    Include File:    TClockVi.H
  5. //    Purpose:    provide a clock view to the desktop
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        12-13-93    created
  9. //        02-10-94    Split all members into seperate files.
  10. #include"tclockvi.h"
  11.  
  12. TClockView::TClockView(TRect& TR_dimensions) : TView(TR_dimensions)    {
  13. //    Purpose:    Constructor
  14. //    Arguments:    TR_dimensions    The dimension for the view to occupy.
  15. //    Return Value:    none
  16. //    Remarks/Portability/Dependencies/Restrictions:
  17. //    Revision History:
  18. //        12-13-93    created
  19.  
  20.     //    Initialize the time.
  21.     PresTime[0] = PastTime[0] = '\0';
  22.     update();
  23. }
  24.